summaryrefslogtreecommitdiffstats
path: root/src/android/app/src/main/jni/uisettings.h
blob: 494654af753a9c4e53ef4b9dd1dee0b28887f864 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// SPDX-FileCopyrightText: 2023 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#pragma once

#include <common/settings_common.h>
#include "common/common_types.h"
#include "common/settings_setting.h"

namespace AndroidSettings {

struct Values {
    Settings::Linkage linkage;

    // Android
    Settings::Setting<bool> picture_in_picture{linkage, true, "picture_in_picture",
                                               Settings::Category::Android};
    Settings::Setting<s32> screen_layout{linkage,
                                         5,
                                         "screen_layout",
                                         Settings::Category::Android,
                                         Settings::Specialization::Default,
                                         true,
                                         true};
};

extern Values values;

} // namespace AndroidSettings